home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / xedus_detect.nasl < prev    next >
Text File  |  2005-03-31  |  1KB  |  55 lines

  1. #
  2. #  This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  3. #
  4. # Ref: James Bercegay of the GulfTech Security Research Team
  5. # This script is released under the GNU GPLv2
  6.  
  7. if(description)
  8. {
  9.   script_id(14644);
  10. #  script_bugtraq_id(11071);
  11.   script_version("$Revision: 1.7 $");
  12.   script_name(english:"Xedus detection");
  13.  
  14.  
  15.  desc["english"] = "
  16. The remote host runs Xedus Peer to Peer webserver, it provides
  17. the ability to share files, music, and any other media, as well 
  18. as create robust and dynamic web sites, which can feature 
  19. database access, file system access, with full .net support. 
  20.     
  21. Risk factor : Low";
  22.   script_description(english:desc["english"]);
  23.  
  24.   script_summary(english:"Checks for presence of Xedus");
  25.   script_category(ACT_GATHER_INFO);
  26.   script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");
  27.  
  28.   script_family(english:"Peer-To-Peer File Sharing");
  29.   script_require_ports("Services/www", 4274);
  30.   exit(0);
  31. }
  32.  
  33.  
  34. include("http_func.inc");
  35. include("http_keepalive.inc");
  36.  
  37. exit(0); # FP-prone
  38. port = 4274;
  39. if(!get_port_state(port))exit(0);
  40.  
  41.  soc = http_open_socket(port);
  42.  if(soc)
  43.  {
  44.   buf = http_get(item:"/testgetrequest.x?param='free%20nessus'", port:port);
  45.   send(socket:soc, data:buf);
  46.   rep = http_recv(socket:soc);
  47.   if(egrep(pattern:"free nessus", string:rep))
  48.   {
  49.     set_kb_item(name:string("xedus/",port,"/running"),value: TRUE);
  50.     security_note(port);
  51.   }
  52.   http_close_socket(soc);
  53.  }
  54. exit(0);
  55.